home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
BUSITION
/
SMARKET2.LZH
/
HLRB.EXE
/
TPASCAL.HLB
< prev
Wrap
Text File
|
1991-08-08
|
9KB
|
124 lines
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: 3 - String Functions !! I/O ERROR MESSAGES :
: 4 - Notes !! :
: 5 - Standard Identifiers !! 90 Record length mismatch :
: 6 - Standard Identifiers !! 91 Seek beyond end of file :
: 7 - Standard Identifiers !! 99 Unexpected end of file :
: 8 - Sample of Complex Structure !! :
: 9 - Sample of Complex Structure !! F0 Disk write error :
: 10 - Notes !! F1 Directory is full :
: 11 - Notes !! F2 File size overflow :
: 12 - Notes !! FF File disappeared :
: 13 - Notes !! :
: 14 - I/O Error Messages !! :
: 15 - I/O Error Messages !! :
: 16 - Run-Time Error Messages !! 15 :
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: !! :
: 4 !! 13 :
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: STANDARD IDENTIFIERS (CONT'D) !! :
: GotoXY Length Odd !! :
: HeapPtr Ln Ord !! :
: Hi Lo Output !! :
: IOResult LowVideo Pi !! :
: Input Lst Port !! :
: InsLine LstOutPtr Pos !! :
: Insert Mark Pred !! :
: Int MaxInt Ptr !! :
: Integer Mem Random !! :
: Kbd MemAvail Randomize !! :
: KeyPressed Move Read !! :
: Length New ReadLn !! :
: 6 NormVideo Real !! 11 :
:- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -:
: CONST { Sample of a Complicated Structure } :
: Menus : ARRAY[1..2] OF :
: RECORD :
: T : STRING[40]; L : ARRAY[1..2] OF :
: RECORD :
: N : STRING[6]; D : STRING[40]; :
: END; :
: END = :
: ( (T:'Main Menu'; :
: L:( {1} (N:'O'; D:'Other' ), {2} (N:'B'; D:'Quit') ) ), :
: ( T:'Other Menu'; :
: L:( {1} (N:'Main'; D:'Main'), {2} (N:'Quit'; D:'Quit') ) ) ); :
: :
: 8 WRITE(Menus[1].L[1].D); <--- This would print "Other" 9 :
:- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -:
<<NEW PAGE>>
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: RUN-TIME ERROR MESSAGES !!-----------------------------------:
: !! TURBO PASCAL QUICK REFERENCE :
: 01 Floating point overflow !!-----------------------------------:
: 02 Division by zero !! :
: 03 SQRT argument was negative !! From the Version 2.00 manual :
: 04 LN argument zero or negative !! :
: 10 String >255 or >1 cvt to CHAR !! Turbo Pascal is a Trademark of :
: 11 String index not in 1..255 !! Borland International :
: 90 Index out of range !! :
: 91 Scalar or sub-range out of rng !!-----------------------------------:
: 92 Out of integer range !! P I N N A C L E S O F T W A R E :
: FF Heap/Stack collision !! P.O. Box 386, Town of Mount Royal :
: !! Montreal, Quebec, Canada H3P 3C6 :
: 16 !!-----------------------------------:
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: I/O ERROR MESSAGES !! STRING FUNCTIONS :
: !! :
: 01 File does not exist !! DELETE(FromStr,StartPos,HowMany) :
: 02 File not open for input !! INSERT(ThisStr,IntoStr,ThisPos) :
: 03 File not open for output !! STR(Number,IntoStr) :
: 04 File not open !! VAL(FromStr,Number,RetCode) 0=OK :
: 10 Error in numeric format !! COPY(FromStr,StartPos,HowMany) :
: 20 Operation not allowed on a !! POS(FindThisStr,InThisStr) :
: logical device !! :
: 21 Not allowed in direct-run mode !! :
: 22 Assign to standard files !! :
: not allowed !! :
: !! :
: 14 !! 3 :
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: !! STANDARD IDENTIFIERS :
: !! ArcTan ClrEOL Delete :
: !! Assign ClrScr EOF :
: !! Aux Con EOLN :
: !! AuxInPtr ConInPtr Erase :
: !! AuxOutPtr ConOutPtr Execute :
: !! BlockRead Concat Exp :
: !! BlockWrite ConstPtr False :
: !! Boolean Copy FilePos :
: !! BufLen Cos FileSize :
: !! Byte CrtExit FillChar :
: !! Chain CrtInit Flush :
: !! Char DelLine Frac :
: 12 !! Chr Delay GetMem 5 :
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -:
: !! STANDARD IDENTIFIERS (CONT'D) :
: !! Release Swap :
: !! Rename Text :
: !! Reset Trm :
: !! Rewrite True :
: !! Round Trunc :
: !! Seek UpCase :
: !! Sin Usr :
: !! SizeOf UsrInPtr :
: !! Sqr UsrOutPtr :
: !! Sqrt Val :
: !! Str Write :
: !! Succ WriteLn :
: 10 !! Swap 7 :
:- - - - - - - - - - - - - - - - - -!!- - - - - - - - - - - - - - - - - -: